home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD>
- <FONT FACE="verdana,arial,helvetica" SIZE=2>
- <TITLE>WBL Team Records</title>
- </HEAD>
- <BODY BGCOLOR="#FFFFFF">
- <H2>Web Baseball League Teams</H2>
- <HR>
- <P>Click the buttons below to investigate the teams of the Web Baseball
- League.</P>
- <P>
- <OBJECT ID="teamlist"
- CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"
- BORDER="0" WIDTH="0" HEIGHT="0">
- <PARAM NAME="DataURL" VALUE="wblteam.txt">
- <PARAM NAME="UseHeader" VALUE="True">
- </OBJECT>
-
- <TABLE>
- <TR>
- <TD ALIGN=RIGHT><INPUT TYPE=BUTTON ID=backward VALUE=" < "></TD>
- <TD ALIGN=LEFT><INPUT TYPE=BUTTON ID=forward VALUE=" > "></TD>
- </TR>
- </TABLE>
- <P>
- <IMG ID=Picture SRC="Tigers.jpg" BORDER=4 HEIGHT=128 WIDTH=128 ALIGN=LEFT>
-
- <TABLE ALIGN=CENTER CELLSPACING=0 CELLPADDING=0>
- <TR>
- <TD ALIGN=RIGHT VALIGN=TOP><LABEL FOR=team>Team Name: </LABEL></TD>
- <TD ALIGN=LEFT VALIGN=TOP WIDTH="10"></TD>
- <TD ALIGN=LEFT VALIGN=TOP><INPUT ID=team TYPE=text
- DATASRC=#teamlist DATAFLD="Team"></TD>
- </TR>
-
- <TR>
- <TD ALIGN=RIGHT VALIGN=TOP><LABEL FOR=wins>
- Current Number of Wins: </LABEL></TD>
- <TD ALIGN=LEFT VALIGN=TOP WIDTH="10"></TD>
- <TD ALIGN=LEFT VALIGN=TOP><INPUT ID=wins TYPE=text
- DATASRC=#teamlist DATAFLD="Wins"></TD>
- </TR>
-
- <TR>
- <TD ALIGN=RIGHT VALIGN=TOP><LABEL FOR=losses>
- Current Number of Losses: </LABEL></TD>
- <TD ALIGN=LEFT VALIGN=TOP WIDTH="10"></TD>
- <TD ALIGN=LEFT VALIGN=TOP><INPUT ID=losses TYPE=text
- DATASRC=#teamlist DATAFLD="Losses"></TD>
- </TR>
-
- <TR>
- <TD ALIGN=RIGHT VALIGN=TOP><LABEL FOR=BA>
- Current Team Batting Average: </LABEL></TD>
- <TD ALIGN=LEFT VALIGN=TOP WIDTH="10"></TD>
- <TD ALIGN=LEFT VALIGN=TOP><INPUT ID=BA TYPE=text
- DATASRC=#teamlist DATAFLD="BA"></TD>
- </TR>
-
- <TR>
- <TD ALIGN=RIGHT VALIGN=TOP><LABEL FOR=ERA>
- Current Team Earned Run Average: </LABEL></TD>
- <TD ALIGN=LEFT VALIGN=TOP WIDTH="10"></TD>
- <TD ALIGN=LEFT VALIGN=TOP><INPUT ID=ERA TYPE=text
- DATASRC=#teamlist DATAFLD="ERA"></TD>
- </TR>
- </TABLE>
-
- <SCRIPT LANGUAGE=JavaScript>
- function documentClick() {
- Picture.src = team.value + ".jpg";
- }
-
- document.onclick = documentClick;
-
- </SCRIPT>
-
- <SCRIPT LANGUAGE=JavaScript>
- function backwardClick() {
- if (teamlist.recordset.AbsolutePosition > 1) {
- teamlist.recordset.MovePrevious();
- } else {
- alert("Already at first team");
- }
- }
-
- backward.onclick = backwardClick;
-
- function forwardClick() {
- if (teamlist.recordset.AbsolutePosition != teamlist.recordset.RecordCount) {
- teamlist.recordset.MoveNext();
- } else {
- alert("Already at last team");
- }
- }
-
- forward.onclick = forwardClick;
-
- </SCRIPT>
- </FONT>
- </BODY>
- </HTML>
-